home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / oper_sys / fp / ifp_unix.lzh / ifp / fproot / math / linear / U < prev    next >
Encoding:
Text File  |  1987-02-09  |  167 b   |  12 lines

  1. (* U part of LU decomposition of matrix *)
  2.  
  3. DEF U AS
  4.    IF Singleton THEN id
  5.    ELSE
  6.       [
  7.          U1k,
  8.      Aik | [EACH #0 END,U] | ApndlCol
  9.       ] | apndl
  10.    END;
  11.  
  12.